@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background:#0d6efd;
}

.single-page-app {
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Nunito', sans-serif;
    background: #26262b;
    color: #fff;
}

.create-mail,
.home,
.search,
.preview-container,
.users-management,
.user-editor,
.notifications {
    padding: 50px 100px;
    overflow-y: auto;
    width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    color: #eee;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}

* img {
    width: 100%;
}

#preview-mail-text img {
    width: unset;
}

.avatible-templates {
    list-style-type: none;
    box-shadow: 0 0 8px 4px #111;
    margin-top: 25px;
}

.mail-template {
    width: 100%;
    height: 50px;
    background: #0002;
    border-top: 1px solid #000;
    display: flex;
    align-items: center;
    padding: 0 15px;
    justify-content: space-between;
    transition: .25s;
}

.mail-template:hover {
    transform: translateX(0px);
}

.mail-template:nth-child(2n) {
    background: #0004;
}

.mail-template:nth-child(1) {
    border-top: 0;
}

.btn-create-mail {
    padding: 10px 15px; 
    border-radius: 4px;
    font-size: 18px;
    /*background: linear-gradient(to left, rgb(216, 108, 19) 50%, #0d6efd 100%);
    background-size: 200%;
    background-position-x: 0;*/
    cursor: pointer;
    color: #fff;
    transition: .4s;
}

.btn-create-mail:hover {
    /*background-position-x: 100%;*/
}

.btn-remove-template {
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 18px;
    /*background: linear-gradient(to left, rgb(230, 52, 52) 50%, rgb(160, 24, 15) 100%);
    background-size: 200%;
    background-position-x: 0;*/
    cursor: pointer;
    color: #fff;
    transition: .4s;
    margin-right: 4px;
}

.btn-remove-template:hover {
    background-position-x: 100%;
}

.btn-save-footer {
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 18px;
    /*background: linear-gradient(to left, rgb(40, 224, 154) 50%, rgb(7, 145, 110) 100%);
    background-size: 200%;
    background-position-x: 0;*/
    cursor: pointer;
    color: #fff;
    transition: .4s;
    margin-right: 4px;
    margin-top: 16px;
}

.btn-save-footer:hover {
    /*background-position-x: 100%;*/
}

label {
    display: block;
    font-size: 18px;
    color: #ddd;
    margin-bottom: 5px;
    margin-top: 10px;
}

.template-select,
.form-input,
.form-textarea,
.select-filter {
    padding: 10px;
    display: block;
    width: 100%;
    background: #0002;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    outline: 0;
    box-shadow: 0 0 2px 1px #111;
    resize: none;
    border-radius: 8px;
}

.template-select:hover,
.form-input:hover,
.form-textarea:hover,
.select-filter:hover {
    box-shadow: 0 0 4px 2px #111;
}

.template-select:focus,
.form-input:focus,
.form-textarea:focus,
.select-filter:focus {
    box-shadow: 0 0 6px 3px #111;
}

.form-input,
.form-textarea {
    cursor: initial;
}

.template-select option,
.select-filter option {
    background: #26262b;
    border: 0;
    outline: 0;
}

.horizontal-line {
    height: 1px;
    width: 100%;
    background: #fff1;
    display: block;
    border: 2px dashed #fff1;
    margin: 35px 0; 
    box-shadow: 0 0 8px 4px #111;
    display: none;
}

.final {
    height: 200px;
    width: 100%;
    background: #0002;
    box-shadow: 0 0 8px 4px #111;
    padding: 50px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.final h2 {
    text-shadow: 1px 1px #0d6efd;
    color: #fff;
}

.final .price {
    font-size: 20px;
    color: #ddd;
    font-weight: 700;
    text-shadow: 1px 1px #000;
}

.final .btn-finalize,
.btn-login {
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 12px;
    /*background: #0d6efd;*/
    color: #fff;

    box-shadow: 
        0 0 4px 2px rgb(40,40,40);

    cursor: pointer;
    transition: .2s;
}

.btn-login {
    margin-top: 16px;
    display: block;
    margin-left: auto;
}

.final .btn-finalize:hover,
.btn-login:hover {
    /*box-shadow: 
        0 0 8px 4px rgb(216, 108, 19),
        inset 0 0 4px 2px rgb(216, 108, 19);

    background: #0d6efd;*/
}

.avatible-tags {
    text-align: justify;
    color: #ddd;
    height: 280px;
    overflow-y: auto;
}

.invalid-message {
    position: absolute;
    height: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    background: #111;
    padding: 5px;
}

.form-input,
.form-textarea,
.form-select {
    position: relative;
}

.home ol, .home ul {
    padding: 0;
}

.response-feedback-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 40px;
    padding-right: 15px;
    align-items: center;
    font-size: 20px;
    color: #ddd;
    justify-content: center;
    background: #1c1c1f;
}

.response-feedback-message em {
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    margin-right: 5px;
}

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.login-form {
    padding: 15px;
    border-radius: 16px;
    background: #0002;
}

.login-page-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.small-icon {
    font-size: 26px;
    margin-right: 30px;
    color:#0d6efd;
    text-shadow: 2px 2px #000;
    margin-left: 25px;
}

.v-h-middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-h-middle .btn-create-mail {
    margin-top: 20px;
}

.search-row {
    background: #0002;
    height: 80px!important;
}

.search-row:nth-child(2n) {
    background: #0004;
}

.search-row h4 {

    font-size: 24px;
    transform: translateY(5px);
}

.search-row .template-name {
    font-size: 16px;
    transform: translateY(-5px);
    color: #ddd;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
}

.v-middle {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.flex {
    display: flex;
}

.search-row .info-group {
    margin: 0 15px;
    width: 20%;
}

.preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.preview-top h4 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.preview-top p {
    color: #ccc;
    font-size: 30px;
}

.preview-container {
    min-height: 100vh;
}

.h-100 {
    min-height: 60vh!important;
    margin-top: 5vh;
}

.logo {
    width: 64px;
    margin-right: 16px;
}

.v-middle {
    align-items: center;
}

.h-middle {
    justify-content: center;
}

.h-start {
    justify-content: flex-start;
}

.logged {
    margin-right: 15px;
    font-size: 20px;
}

.btn-sort {
    color: #fff;
    display: block;
    height: 100%;
    border: 0;
    background: 0;
    outline: 0;
    padding: 0 3px;
    border-radius: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sort-templates, .sort-templates-by-date {
    height: 50px;
    padding-right: 35px;
    cursor: pointer;
}

.hidden-bs {
    background: 0;
    color: 0;
    color: transparent;
}

.hidden-bs:hover {
    color: transparent!important;
    background: 0!important;
}

.top-right-menu {
    position: fixed;
    top: 50px;
    right: 100px;
    padding: 15px;
    border-radius: 16px;
    background: #1c1c1f;
    box-shadow: 0 0 8px 4px #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-right-menu .link {
    margin: 0 15px;
    color: #fff;
}

.error-page {
    padding: 50px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.error-page h1 {
    font-size: 100px;   
}

.m-x {
    margin: 0 5px;
}

.btn-invisible {
    background: 0;
    outline: 0;
    color: #fff;
}

.link-2 {
    color: #ddd;
    font-size: 24px;
    margin-top: 16px;
}

.prompt-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.prompt-container h3 {
    color: #ddd;
}

.prompt-container .prompt-input {
    height: 40px;
    width: 320px;
    background: #fff3;
    color: #fff;
    outline: 0;
    border: 0;
    padding: 15px;
}

.prompt-container #submit-prompt, .prompt-container #cancel-prompt {
    height: 40px;
    width: 80px;
    background: #fff3;
    color: #fff;
    outline: 0;
    border: 0;
    cursor: pointer;
    transition: .4s;
}

.prompt-container #submit-prompt:hover {
    background: rgb(7, 145, 110);
}

.prompt-container #cancel-prompt:hover {
    background: rgb(219, 58, 58);
}

.container-backdrop {
    background: #0003;
    padding: 35px;
    margin: 35px 0;
    border-radius: 4px;
    box-shadow: 0 0 8px 4px #0005;
}

.image-cke-append {
    height: 128px;
    width: auto;
    margin: 4px 16px;
}

.images-container {
    max-height: 264px;
    overflow-y: auto;
}

.bell-bottom-right {
    transform: translateY(8px) translateX(-4px);
    display: inline-block;
    font-size: 14px;
}

.d-column {
    flex-direction: column;
}

.logo {
    cursor: pointer;
}

.prompt-backdrop {
    padding: 25px 35px;
    background: #26262b;
    border-radius: 4px;
    box-shadow: 0 0 8px 4px #111;
}

[data-link] {
    cursor: pointer;
}

.template-name-editable {
    cursor: pointer;
}

.image-cke-append {
    cursor: pointer;
}

[src="/images/spy.png"] {
    cursor: no-drop!important;
    
}

.prompt-subtext {
    transform: translateY(16px);
    color: #ddd!important;
}

.h-space-between {
    justify-content: space-between;
}

.footer-logo {
    width: 32px;
    margin-right: 16px;
}

.checkbox {
    outline: 0;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.checkbox::before {
    content: "";
    display: block;
    background: #000b;
    position: absolute;
    cursor: pointer;
    top: -16px;
    left: 12px;
    width: 24px;
    height: 24px;
}

.checkbox::after {
    content: "";
    display: block;
    background: transparent;
    position: absolute;
    cursor: pointer;
    top: -14px;
    left: 14px;
    width: 20px;
    height: 20px;
    transition: .4s;
}

.checkbox:checked::after {
    background: rgb(87, 255, 54);
}

.delete-all-notification {
    transform: translateX(46px);
}